home *** CD-ROM | disk | FTP | other *** search
/ Gigarom 1 / Gigarom Macintosh Archives (Quantum Leap)(CDRM1080320)(1993).iso / FILES / DEV / A-B / 003. SillyBalls.cpt / PSillyBalls.make < prev    next >
Text File  |  1988-08-01  |  1KB  |  44 lines

  1. #
  2. #    Macintosh Developer Technical Support
  3. #
  4. #    Simple Color QuickDraw Sample Application
  5. #
  6. #    SillyBalls
  7. #
  8. #    PSillyBalls.make    -    Make Source
  9. #
  10. #    Copyright © 1988 Apple Computer, Inc.
  11. #    All rights reserved.
  12. #
  13. #    Versions:    1.0                    8/88
  14. #
  15. #    Components:    SillyBalls.p        August 1, 1988
  16. #                SillyBalls.c        August 1, 1988
  17. #                PSillyBalls.make    August 1, 1988
  18. #                CSillyBalls.make    August 1, 1988
  19. #
  20. #    This is a very simple sample program that demonstrates how to use Color 
  21. #    QuickDraw.  It is about two pages of code, and does nothing more than open
  22. #    a color window and draw randomly colored ovals in the window.
  23. #    
  24. #    The purpose is to show how to get some initial results with Color QuickDraw.
  25. #    It is a complete program and is very short to be as clear as possible.
  26. #    
  27. #    It does not have an Event Loop.  It is not fully functional in the sense that
  28. #    it does not do all the things you would expect a well behaved Macintosh 
  29. #    program to do, like size the window naturally, have an event loop, use menus, 
  30. #    etc.
  31. #
  32. #    See Sample and TESample for the general structure and MultiFinder techniques that
  33. #    we recommend that you use when building a new application.
  34. #
  35.  
  36. PObjs        =    SillyBalls.p.o ∂
  37.                 "{Libraries}"Runtime.o ∂
  38.                 "{Libraries}"Interface.o ∂
  39.                 "{PLibraries}"PasLib.o
  40.  
  41. PSillyBalls    ƒ    {PObjs} PSillyBalls.make
  42.                 Link -o {Targ} {PObjs}
  43.                 SetFile {Targ} -t APPL -c '????'
  44.